home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000274_news@columbia.edu_Sat Apr 29 14:41:27 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01143
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Apr 1995 10:43:04 -0400
  3. Received: by apakabar.cc.columbia.edu id AA13636
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Apr 1995 10:43:00 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Securing MS-Kermit 3.13
  9. Date: 29 Apr 1995 14:41:27 GMT
  10. Organization: Columbia University
  11. Lines: 25
  12. Message-Id: <3ntj6n$d57@apakabar.cc.columbia.edu>
  13. References: <Dfitzgerald.30.2FA15255@vines.colostate.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Dfitzgerald.30.2FA15255@vines.colostate.edu>,
  18. Daniel C. FitzGerald <Dfitzgerald@vines.colostate.edu> wrote:
  19. >Is it possible to secure kermit from users escaping to the command level or 
  20. >DOS?  We are looking at using kermit as public access terminal emulator, and 
  21. >we don't want users leaving terminal mode.
  22. >
  23. It might be possible to cook up a custom version of MS-DOS Kermit for you,
  24. but with sufficient deviousness and wile, you should be able to find a way
  25. to accomplish the same thing with the current version (which is, by the way,
  26. 3.14).
  27.  
  28. Your script for invoking Kermit would simply include a CONNECT command on
  29. the DOS command line, but no STAY command, e.g.
  30.  
  31.   kermit set this, set that, connect
  32.  
  33. If the user attempts to escape back, they exit from the program.  At that
  34. point your upper level script can do whatever it wants -- restart Kermit,
  35. give a message or a menu, etc.
  36.  
  37. How to prevent them from escaping to DOS?  Allocate so many rollback screens
  38. that memory will be filled up and there won't be any room for the inferior
  39. command processor.
  40.  
  41. - Frank